-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add update on is_valid_char
#11213
Add update on is_valid_char
#11213
Conversation
This is per JuliaLang#11171
@@ -178,6 +178,8 @@ Library improvements | |||
* `charwidth(c)` and `strwidth(s)` now return up-to-date cross-platform | |||
results (via utf8proc) ([#10659]): Julia now likes pizza ([#3721]), but some terminals still don't. | |||
|
|||
* `is_valid_char(c)` now correctly handles Unicode "non-characters", which are valid Unicode codepoints. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cross reference the issue this fixes (or pull request) as you see in the above. There's a script somewhere (maybe in contrib? got an obvious name but I'm on my tablet and lazy) to run after which will generate the correct footnote.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks so much! Again, you've been a big help. Will do.
Add reference to issue JuliaLang#11171
p.s. you will need to run the script, too--sorry that wasn't clear (someone else will have to merge this, I'm going to be out of touch for a couple weeks) |
Help! What script? (sorry for more newbieness with Git, GitHub, etc!) |
The script that @pao mentioned above is actually |
@kmsquire Thanks, but I'm still a bit unclear about what I need to do (I created the PR directly on GitHub, so I don't even have a local branch). Do I need to: 1) create and sync a local branch, 2) find and run the NEWS-update.jl script [I haven't used julia as a scripting language yet... will have to investigate that too] and then 3) push whatever changes the script made back to GitHub? |
Pretty much, yes. |
Thanks again for all the help! Maybe some year, hopefully before I retire, I'll have all this figured out! 😀 |
Sure! Since this is a one-line change, I would suggest just closing this request, making the change locally, running the update script, and submitting a new PR. |
Add update on `is_valid_char`
(Note that, in general, we haven't been adding NEWS items for bug fixes.) |
This is per #11171